home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00004_State Parent Script.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  9.4 KB  |  328 lines

  1. property mode, sound, activeMonitor, lastAthlete, activeVideoID, activeVideoMode, questionSelectList, selectListPlaybackPtr, athleteSelectListPtr, topicSelectListPtr, editList, editListPtr, editListPlaybackPtr, questionList, actionList, monitorPtr, userName, userTitle, userLoc, selectType, topicNum
  2.  
  3. on birth me
  4.   MessagePut("birthing a state object")
  5.   set mode to EMPTY
  6.   set sound to 1
  7.   set activeMonitor to 0
  8.   set lastAthlete to EMPTY
  9.   set activeVideoID to EMPTY
  10.   set activeVideoMode to #init
  11.   set questionSelectList to []
  12.   set selectListPlaybackPtr to 0
  13.   set athleteSelectListPtr to 0
  14.   set topicSelectListPtr to 0
  15.   set editList to []
  16.   set editListPtr to 0
  17.   set editListPlaybackPtr to 0
  18.   set questionList to []
  19.   set actionList to []
  20.   set monitorPtr to []
  21.   set userName to EMPTY
  22.   set userTitle to EMPTY
  23.   set userLoc to EMPTY
  24.   set selectType to #init
  25.   set topicNum to 0
  26.   return me
  27. end
  28.  
  29. on StatePut me
  30.   MessagePut("=== state put ===" && me)
  31.   MessagePut("mode" && mode)
  32.   MessagePut("active monitor:" && activeMonitor)
  33.   MessagePut("question list:" && questionList && "  ptr:" && GetMonitorPtr(me, 1))
  34.   MessagePut("action list:" && actionList && "  ptr:" && GetMonitorPtr(me, 4))
  35.   MessagePut("edit list:" && editList && "  ptr:" && editListPtr)
  36.   MessagePut("=============")
  37. end
  38.  
  39. on SetDefaultState me
  40.   MessagePut("setting default state:" && me)
  41.   set mode to #play
  42.   set S to integer(GetVolume())
  43.   if S < 1 then
  44.     set sound to 1
  45.   else
  46.     set sound to S
  47.   end if
  48.   set activeVideoID to EMPTY
  49.   set activeVideoMode to #none
  50.   set activeMonitor to 1
  51.   set athleteSelectListPtr to 1
  52.   set topicSelectListPtr to 1
  53.   set questionSelectList to []
  54.   set selectListPlaybackPtr to 0
  55.   set editList to []
  56.   set editListPtr to 1
  57.   set editListPlaybackPtr to 0
  58.   set monitorPtr to [1, 1, 1, 1, 1, 1]
  59.   set questionList to value(string(BuildQuestionList("004")))
  60.   set lastAthlete to "004"
  61.   set actionList to value(string(BuildActionList("004")))
  62.   set userName to EMPTY
  63.   set userTitle to EMPTY
  64.   set userLoc to EMPTY
  65.   set selectType to #none
  66.   set topicNum to 0
  67.   return me
  68. end
  69.  
  70. on SaveStateToHistory me
  71.   global givSolo
  72.   MessagePut("saving state to history...")
  73.   StatePut(me)
  74.   if givSolo = 1 then
  75.     nothing()
  76.   else
  77.     HSStatePut("iv", "_mode", mode)
  78.     HSStatePut("iv", "_activeVideoID", activeVideoID)
  79.     HSStatePut("iv", "_activeMonitor", activeMonitor)
  80.     HSStatePut("iv", "_athleteSelectListPtr", athleteSelectListPtr)
  81.     HSStatePut("iv", "_topicSelectListPtr", topicSelectListPtr)
  82.     HSStatePut("iv", "_questionSelectList", questionSelectList)
  83.     HSStatePut("iv", "_selectListPlaybackPtr", selectListPlaybackPtr)
  84.     HSStatePut("iv", "_editList", editList)
  85.     HSStatePut("iv", "_editListPtr", editListPtr)
  86.     HSStatePut("iv", "_editListPlaybackPtr", editListPlaybackPtr)
  87.     HSStatePut("iv", "_monitorPtr", monitorPtr)
  88.     HSStatePut("iv", "_questionList", questionList)
  89.     HSStatePut("iv", "_lastAthlete", lastAthlete)
  90.     HSStatePut("iv", "_actionList", actionList)
  91.     HSStatePut("iv", "_userName", userName)
  92.     HSStatePut("iv", "_userTitle", userTitle)
  93.     HSStatePut("iv", "_userLoc", userLoc)
  94.     HSStatePut("iv", "_selectType", selectType)
  95.     HSStatePut("iv", "_topicNum", topicNum)
  96.   end if
  97. end
  98.  
  99. on RetrieveStateFromHistory me
  100.   global givSolo
  101.   MessagePut("retrieving state from history...")
  102.   if givSolo = 1 then
  103.     set tempState to SetDefaultState(me)
  104.     if not objectp(tempState) then
  105.       MessagePut("state object failed in SetDefaultState")
  106.       exit
  107.     end if
  108.     return tempState
  109.     exit
  110.   end if
  111.   set mode to HSStateGet("iv", "_mode")
  112.   if mode = EMPTY then
  113.     set tempState to SetDefaultState(me)
  114.     if not objectp(tempState) then
  115.       MessagePut("state object failed in SetDefaultState")
  116.       exit
  117.     end if
  118.     return tempState
  119.     exit
  120.   end if
  121.   set S to integer(GetVolume())
  122.   if S < 1 then
  123.     set sound to 1
  124.   else
  125.     set sound to S
  126.   end if
  127.   set activeVideoID to HSStateGet("iv", "_activeVideoID")
  128.   set activeMonitor to HSStateGet("iv", "_activeMonitor")
  129.   set athleteSelectListPtr to HSStateGet("iv", "_athleteSelectListPtr")
  130.   set topicSelectListPtr to HSStateGet("iv", "_topicSelectListPtr")
  131.   set questionSelectList to HSStateGet("iv", "_questionSelectList")
  132.   set selectListPlaybackPtr to HSStateGet("iv", "_selectListPlaybackPtr")
  133.   set editList to HSStateGet("iv", "_editList")
  134.   set editListPtr to HSStateGet("iv", "_editListPtr")
  135.   set editListPlaybackPtr to HSStateGet("iv", "_editListPlaybackPtr")
  136.   set monitorPtr to HSStateGet("iv", "_monitorPtr")
  137.   set questionList to HSStateGet("iv", "_questionList")
  138.   set lastAthlete to HSStateGet("iv", "_lastAthlete")
  139.   set actionList to HSStateGet("iv", "_actionList")
  140.   set userName to HSStateGet("iv", "_userName")
  141.   set userTitle to HSStateGet("iv", "_userTitle")
  142.   set userLoc to HSStateGet("iv", "_userLoc")
  143.   set selectType to HSStateGet("iv", "_selectType")
  144.   set topicNum to HSStateGet("iv", "_topicNum")
  145.   set activeVideoMode to #none
  146.   return me
  147. end
  148.  
  149. on SetStateFromValue me, ath
  150.   MessagePut("setting state from val:" && ath)
  151.   set mode to #play
  152.   set S to integer(GetVolume())
  153.   if S < 1 then
  154.     set sound to 1
  155.   else
  156.     set sound to S
  157.   end if
  158.   set activeVideoID to EMPTY
  159.   set activeVideoMode to #none
  160.   set activeMonitor to 1
  161.   set athleteSelectListPtr to 1
  162.   set topicSelectListPtr to 1
  163.   set questionSelectList to []
  164.   set selectListPlaybackPtr to 0
  165.   set editList to []
  166.   set editListPtr to 1
  167.   set editListPlaybackPtr to 0
  168.   set monitorPtr to [1, 1, 1, 1, 1, 1]
  169.   set questionList to value(string(BuildQuestionList(ath)))
  170.   set lastAthlete to ath
  171.   set actionList to value(string(BuildActionList(ath)))
  172.   set userName to EMPTY
  173.   set userTitle to EMPTY
  174.   set userLoc to EMPTY
  175.   set selectType to #none
  176.   set topicNum to 0
  177.   return me
  178. end
  179.  
  180. on GetMonitorPtr me, _mon
  181.   set tmp to getAt(monitorPtr, _mon)
  182.   return tmp
  183. end
  184.  
  185. on SetMonitorPtr me, _mon, _val
  186.   setAt(monitorPtr, _mon, _val)
  187. end
  188.  
  189. on BuildQuestionList _athID
  190.   global givAthleteNameList
  191.   set str to getaProp(givAthleteNameList, _athID)
  192.   set lis to []
  193.   repeat with I = 1 to item 2 of str
  194.     append(lis, "QA" & _athID & string(I))
  195.   end repeat
  196.   MessagePut("question list built:" && lis)
  197.   return lis
  198. end
  199.  
  200. on GetClipID _mon
  201.   global givState
  202.   set lis to GetMonitorListByNumber(_mon)
  203.   if count(lis) = 0 then
  204.     return "none"
  205.     exit
  206.   end if
  207.   set tmp to getAt(lis, GetMonitorPtr(givState, _mon))
  208.   return tmp
  209. end
  210.  
  211. on BuildActionList _ath
  212.   global givAthleteNameList
  213.   set str to getaProp(givAthleteNameList, _ath)
  214.   set lis to []
  215.   repeat with I = 1 to item 3 of str
  216.     append(lis, "AV" & _ath & string(I))
  217.   end repeat
  218.   MessagePut("action list built: " & lis)
  219.   return lis
  220. end
  221.  
  222. on GetMonitorListByNumber monitor
  223.   global givState, givIntroClipList, givTransitionList, givAdClipList, givEndingClipList
  224.   if monitor = 1 then
  225.     set lis to the questionList of givState
  226.   else
  227.     if monitor = 2 then
  228.       set lis to givIntroClipList
  229.     else
  230.       if monitor = 3 then
  231.         set lis to givTransitionList
  232.       else
  233.         if monitor = 4 then
  234.           set lis to givAdClipList
  235.         else
  236.           if monitor = 5 then
  237.             set lis to givEndingClipList
  238.           else
  239.             if monitor = 6 then
  240.               set lis to the actionList of givState
  241.             else
  242.               set lis to EMPTY
  243.             end if
  244.           end if
  245.         end if
  246.       end if
  247.     end if
  248.   end if
  249.   return lis
  250. end
  251.  
  252. on SetMonitorListByNumber monitor, lis
  253.   global givState, givIntroClipList, givTransitionList, givAdClipList, givEndingClipList
  254.   if monitor = 1 then
  255.     set the questionList of givState to value(string(lis))
  256.   else
  257.     if monitor = 2 then
  258.       set givIntroClipList to value(string(lis))
  259.     else
  260.       if monitor = 3 then
  261.         MessagePut("setting monitor 3 list to " & lis)
  262.         set givTransitionList to value(string(lis))
  263.       else
  264.         if monitor = 4 then
  265.           set givAdClipList to value(string(lis))
  266.         else
  267.           if monitor = 5 then
  268.             set givEndingClipList to value(string(lis))
  269.           else
  270.             if monitor = 6 then
  271.               set the actionList of givState to value(string(lis))
  272.             else
  273.               MessagePut("error: incorrect monitor number in set...")
  274.             end if
  275.           end if
  276.         end if
  277.       end if
  278.     end if
  279.   end if
  280. end
  281.  
  282. on SetAthleteFromMonitor me, _ath, override
  283.   global givTextRegColor
  284.   if voidp(_ath) or (_ath = "000") then
  285.     set athID to GetAthleteIDFromClip()
  286.   else
  287.     set athID to _ath
  288.   end if
  289.   MessagePut("in set athlete from monitor... clip in monitor 1 is" && GetClipID(1))
  290.   if (athID <> lastAthlete) or (override = 1) then
  291.     MessagePut("setting athlete" && athID && "from monitor")
  292.     set actionList to value(string(BuildActionList(athID)))
  293.     set lastAthlete to athID
  294.     SetMonitorPtr(me, 6, 1)
  295.   else
  296.     MessagePut("clip matches last athlete")
  297.   end if
  298.   DisplayMonitor(1)
  299.   DisplayMonitor(6)
  300. end
  301.  
  302. on SetAthleteFromClip me, _clip
  303.   if voidp(_clip) then
  304.     set athID to GetAthleteIDFromClip()
  305.   else
  306.     set athID to char 3 to 5 of _clip
  307.   end if
  308.   MessagePut("setting athlete from clip... clip is" && _clip)
  309.   set questionList to value(string(BuildQuestionList(athID)))
  310.   set actionList to value(string(BuildActionList(athID)))
  311.   SetMonitorPtr(me, 6, 1)
  312.   SetMonitorPtr(me, 1, value(char 6 of _clip))
  313.   set lastAthlete to athID
  314.   SetActiveMonitor(1, 1)
  315.   DisplayMonitor(1)
  316.   DisplayMonitor(6)
  317. end
  318.  
  319. on SetSound me, val
  320.   if val = sound then
  321.     MessagePut("ignoring set sound, same value")
  322.   else
  323.     set sound to val
  324.     PlaySoundWait("TONE.AIF")
  325.     MessagePut("sound set to" && sound)
  326.   end if
  327. end
  328.